home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / dskut / pdisk.zip / UMUL.ASM < prev   
Assembly Source File  |  1989-01-12  |  121b  |  10 lines

  1. %    .MODEL    memmodel,C
  2. ;    .286
  3.     .code
  4. umul1632    Proc word1, word2
  5.     mov        ax,word1
  6.     mul        word2
  7.     ret
  8. umul1632    endp
  9.     end
  10.